home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Applications
/
Graphics
/
GraphicsWorkshop
/
Source
/
PictureDocument.h
< prev
next >
Wrap
Text File
|
1992-05-18
|
414b
|
27 lines
#import <objc/Object.h>
@interface PictureDocument : Object
{
id window;
id scrollView;
id imageView;
id printInfo;
int maxWidth;
int maxHeight;
char *fileFormat;
}
+ newWithName: (const char *)name at: (int *)x and: (int *)y of: (id)image ofType: (char *)n;
- free;
- print: sender;
- getImage;
- replaceImageWith: (id)newImage;
- windowWillClose:sender;
- windowDidBecomeMain:sender;
@end